home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Graphics_Utils / PovRay_040 / POVRay3 / pov3demo / other / ifelse2.pov < prev    next >
Encoding:
Text File  |  1998-06-24  |  322 b   |  16 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Illustrates that #if #else can be nested and it works with #include
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #if (clock < 1.0)
  8. #include "shear1.pov"
  9. #else
  10.   #if (clock < 2.0)
  11.     #include "shear2.pov"
  12.   #else
  13.     #include "shear3.pov"
  14.   #end
  15. #end
  16.